$newTime = Time.AddMinute
("<time>", <n>)
Adds or subtracts a given number of time period in minutes to the specified time.
Parameters
<time> Any valid time expression.
<n> An expression denoting the number of time intervals in minutes you want to add or subtract. To subtract, n should be negative.
Return Value
Returns the new time depending on the control panel settings.
Example
$stime = "10:42:23 PM"
$ret = time.AddMinute ($stime, 5)
- $ret contains 10:47:23 PM.